From 94eecf57dc26b13ccbd22f59fdf678741186b35a Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Tue, 12 Sep 2017 22:15:27 +0100 Subject: [PATCH] PlacesSidebar: Unref cloud_manager in dispose() We ref the CloudProviders singleton in init() but did not unref it in dispose(). Do so, using g_clear_object(). https://bugzilla.gnome.org/show_bug.cgi?id=787600 --- gtk/gtkplacessidebar.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c index ff11d65b5a..9b6a2c72ce 100644 --- a/gtk/gtkplacessidebar.c +++ b/gtk/gtkplacessidebar.c @@ -4271,6 +4271,10 @@ gtk_places_sidebar_dispose (GObject *object) g_slist_free_full (sidebar->shortcuts, g_object_unref); sidebar->shortcuts = NULL; +#ifdef HAVE_CLOUDPROVIDERS + g_clear_object (&sidebar->cloud_manager); +#endif + G_OBJECT_CLASS (gtk_places_sidebar_parent_class)->dispose (object); } -- 2.30.2